home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / director / evalcopy / director.z / NOH_TALE.DIR / 00190_Script_190 < prev    next >
Text File  |  1994-06-29  |  265b  |  9 lines

  1. --This handler fades in sound in both sound channels.
  2. --The first number after each sound fadeIn command is
  3. --the number of the sound channel.
  4. --The sound fades in over 1 second (60 ticks).
  5.  
  6. on exitFrame
  7.   sound fadein 1, 1 * 60
  8.   sound fadein 2, 1 * 60
  9. end